home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / ColorSync 2.5.1 SDK / Sample Code / CSDemo 2.5 / CSDemoSources / winProfIDGetSet.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-09-09  |  1.0 KB  |  41 lines  |  [TEXT/CWIE]

  1.  
  2. #ifndef _WINPROFIDGETSET_
  3. #define _WINPROFIDGETSET_
  4.  
  5.  
  6. #ifndef __CMAPPLICATION__
  7. #include <CMApplication.h>
  8. #endif
  9.  
  10. #ifndef _WIN_
  11. #include "win.h"
  12. #endif
  13.  
  14. #ifndef _WINPROFID_
  15. #include "winProfID.h"
  16. #endif
  17.  
  18.  
  19. /**\
  20. |**| ==============================================================================
  21. |**| PUBLIC DEFINES
  22. |**| ==============================================================================
  23. \**/
  24. #define kNormalMode        0
  25. #define kTechieMode        1
  26.  
  27.  
  28. /**\
  29. |**| ==============================================================================
  30. |**| PUBLIC FUNCTION PROTOTYPES
  31. |**| ==============================================================================
  32. \**/
  33. CMProfileIdentifier** GetProfIDIDHdl( winHandle win ) ;
  34. void            SetProfIDIDHdl        ( winHandle win, CMProfileIdentifier** IDHdl ) ;
  35. unsigned long    GetProfIDIndex        ( winHandle win ) ;
  36. void            SetProfIDIndex        ( winHandle win, unsigned long index ) ;
  37. unsigned long    GetProfIDMode        ( winHandle win ) ;
  38. void            SetProfIDMode        ( winHandle win, unsigned long mode ) ;
  39.  
  40.  
  41. #endif